body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
}
/* Sidebar */
#sidebar {
    width: 200px;
    background-color: #2c3e50;
    color: white;
    padding-top: 10px;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
}
#sidebar a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    background-color: #34495e;
    border-radius: 5px;
}
#sidebar a:hover {
    background-color: #1abc9c;
}
#sidebar .viewingpage  {
    background-color:#1abc9c ;
}
/* Content area */
#content {
    margin-left: 220px;  /* To prevent content from hiding behind sidebar */
    padding: 20px;
    width: calc(100% - 220px);  /* Take up the remaining space */
    text-align: center;
}
h1 {
    color: #2c3e50;
    font-size: 60px;
}
h2 {
    color: #2c3e50;
    font-size: 30px;
    opacity: 0.8;
}
/* Grid Layout for Students */
.student-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
}
.student-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}
.student-card:hover {
    transform: scale(1.05);
}
.student-photo {
    width: 150px;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;


}
.student-name {
    font-size: 18px;
    color: #2c3e50;
    font-weight: bold;
    text-align: left;
    font-style: bold;
}
.student-description {
    text-align: justify;
    font-size: 14px;

}
